home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 17 / AMIGAplus Sonderheft 17 (1999)(ICP)(DE)[!].iso / Rexx / TTMLoadIcon.rexx < prev    next >
OS/2 REXX Batch file  |  1997-11-26  |  500b  |  20 lines

  1. /* $VER:  TTMLoadIcon.rexx 1.0 (27.11.97) by J. Tierney
  2.  
  3.   TTMLoadIcon.rexx  v1.0
  4.   11/27/97  J. Tierney
  5.   
  6.   Purpose:  Opens a new TTManger window.
  7.   
  8.   Usage:  TTMLoadIcon.rexx [<filename>]
  9.   
  10.           <filename> - Name of icon to load.  Optional; a file requester will
  11.                       pop up if no name is given.
  12.  
  13. */
  14.  
  15. ADDRESS 'TTMANAGER'   /* Hello, TTManager. */
  16.  
  17. PARSE ARG fname       /* Get the file name, if one was supplied. */
  18.  
  19. NEW fname             /* Tell TTM to open this file. */
  20.